Uncategorized APIClass ObjectColor ClassOn this pageColor Class Description: Provides methods for creating Color objects. __call Type: Metamethod. Description: Creates a color with all channels set to 0. Signature: metamethod __call: function(self: ColorClass): Color Returns: Return TypeDescriptionColorA new Color object. __call Type: Metamethod. Description: Creates a new Color object with a Color3 object and alpha value. Signature: metamethod __call: function(self: ColorClass, color: Color3, a: number): Color Parameters: ParameterTypeDescriptioncolorColor3The color as a Color3 object.anumber[optional] The alpha value of the color ranging from 0 to 255. Returns: Return TypeDescriptionColorA new Color object. __call Type: Metamethod. Description: Creates a new Color object from an ARGB integer value. Signature: metamethod __call: function(self: ColorClass, argb: integer): Color Parameters: ParameterTypeDescriptionargbintegerThe ARGB integer value to create the color from.For example 0xffffffff (opaque white), 0x88ff0000 (half transparent red) Returns: Return TypeDescriptionColorA new Color object. __call Type: Metamethod. Description: Creates a new Color object from RGBA color channel values. Signature: metamethod __call: function(self: ColorClass, r: number, g: number, b: number, a: number): Color Parameters: ParameterTypeDescriptionrnumberThe red channel value (0-255).gnumberThe green channel value (0-255).bnumberThe blue channel value (0-255).anumberThe alpha channel value (0-255). Returns: Return TypeDescriptionColorA new Color object.